RequestDataRequest

data class RequestDataRequest(securityOrigin: String, databaseName: String, objectStoreName: String, indexName: String, skipCount: Int, pageSize: Int, keyRange: KeyRange?)

Represents request frame that can be used with IndexedDB#requestData operation call.

Requests data from object store or index.

See also

Constructors

RequestDataRequest
Link copied to clipboard
fun RequestDataRequest(securityOrigin: String, databaseName: String, objectStoreName: String, indexName: String, skipCount: Int, pageSize: Int, keyRange: KeyRange? = null)

Properties

databaseName
Link copied to clipboard
val databaseName: String
Database name.
indexName
Link copied to clipboard
val indexName: String
Index name, empty string for object store data requests.
keyRange
Link copied to clipboard
val keyRange: KeyRange? = null
Key range.
objectStoreName
Link copied to clipboard
val objectStoreName: String
Object store name.
pageSize
Link copied to clipboard
val pageSize: Int
Number of records to fetch.
securityOrigin
Link copied to clipboard
val securityOrigin: String
Security origin.
skipCount
Link copied to clipboard
val skipCount: Int
Number of records to skip.

Sources

jvm source
Link copied to clipboard